Computer Vision for the Web by Foat Akhmadeev
Author:Foat Akhmadeev [Akhmadeev, Foat]
Language: eng
Format: azw3, epub, pdf
Publisher: Packt Publishing
Published: 2015-10-13T16:00:00+00:00
Descriptors implementation and their matching
Our goal is to find an object from a template on a scene image. We can do that by finding features and descriptors on both images and by matching descriptors from a template to an image.
We start from the tracking.js library and BRIEF descriptors. The first thing that you can do is set the number of location pairs:
tracking.Brief.N = 512
By default, it is 256, but you can choose a higher value. The larger the value the more information you will get and the more memory and computational cost it requires.
Before starting the computation, do not forget to apply the Gaussian blur. Next, we find the FAST corners and compute descriptors on both images. In the following code, we use the suffix Object for a template image and Scene for a scene image:
var cornersObject = tracking.Fast.findCorners(grayObject, colsObject, rowsObject); var cornersScene = tracking.Fast.findCorners(grayScene, colsScene, rowsScene); var descriptorsObject = tracking.Brief.getDescriptors(grayObject, colsObject, cornersObject); var descriptorsScene = tracking.Brief.getDescriptors(grayScene, colsScene, cornersScene);
Download
Computer Vision for the Web by Foat Akhmadeev.epub
Computer Vision for the Web by Foat Akhmadeev.pdf
This site does not store any files on its server. We only index and link to content provided by other sites. Please contact the content providers to delete copyright contents if any and email us, we'll remove relevant links or contents immediately.
Algorithms of the Intelligent Web by Haralambos Marmanis;Dmitry Babenko(8310)
Test-Driven Development with Java by Alan Mellor(6836)
Data Augmentation with Python by Duc Haba(6755)
Principles of Data Fabric by Sonia Mezzetta(6495)
Learn Blender Simulations the Right Way by Stephen Pearson(6403)
Microservices with Spring Boot 3 and Spring Cloud by Magnus Larsson(6267)
Hadoop in Practice by Alex Holmes(5966)
Jquery UI in Action : Master the concepts Of Jquery UI: A Step By Step Approach by ANMOL GOYAL(5816)
RPA Solution Architect's Handbook by Sachin Sahgal(5669)
Big Data Analysis with Python by Ivan Marin(5413)
The Infinite Retina by Robert Scoble Irena Cronin(5362)
Life 3.0: Being Human in the Age of Artificial Intelligence by Tegmark Max(5164)
Pretrain Vision and Large Language Models in Python by Emily Webber(4385)
Infrastructure as Code for Beginners by Russ McKendrick(4151)
Functional Programming in JavaScript by Mantyla Dan(4044)
The Age of Surveillance Capitalism by Shoshana Zuboff(3964)
WordPress Plugin Development Cookbook by Yannick Lefebvre(3866)
Embracing Microservices Design by Ovais Mehboob Ahmed Khan Nabil Siddiqui and Timothy Oleson(3665)
Applied Machine Learning for Healthcare and Life Sciences Using AWS by Ujjwal Ratan(3643)
